Don't build xenctx by default,a nd fix one error msg.
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 11 Jul 2005 09:03:24 +0000 (09:03 +0000)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 11 Jul 2005 09:03:24 +0000 (09:03 +0000)
tools/xentrace/Makefile
tools/xentrace/xenctx.c

index 0a062bd007410e9df55678dc3add9d5347ad0b42..329d71c3eed3e3325af6b59073a77ff339151700 100644 (file)
@@ -14,7 +14,7 @@ CFLAGS  += -I $(XEN_LIBXC)
 HDRS     = $(wildcard *.h)
 OBJS     = $(patsubst %.c,%.o,$(wildcard *.c))
 
-BIN      = xentrace xenctx
+BIN      = xentrace
 SCRIPTS  = xentrace_format
 MAN1     = $(wildcard *.1)
 MAN8     = $(wildcard *.8)
index 1744fc1956e2ad2b6564b5fff0e42742a19d496e..c0f85f7485b6b5815255433c588413ca63ec489b 100644 (file)
@@ -90,7 +90,7 @@ void dump_ctx(u32 domid, u32 vcpu)
 
     ret = xc_domain_get_vcpu_context(xc_handle, domid, vcpu, &ctx);
     if (ret != 0) {
-        perror("xc_domain_getfullinfo");
+        perror("xc_domain_get_vcpu_context");
         exit(-1);
     }
     print_ctx(&ctx);